home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / lfs / lfsMemInt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-19  |  1.1 KB  |  36 lines

  1. /*
  2.  * lfsMemInt.h --
  3.  *
  4.  *    Declarations of Lfs memory resource management routines and
  5.  *    data structures.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/lfs/lfsMemInt.h,v 1.2 92/09/03 18:13:29 shirriff Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _LFSMEMINT
  20. #define _LFSMEMINT
  21.  
  22.  
  23. /* data structures */
  24.  
  25. /* procedures */
  26.  
  27. extern void LfsMemInit _ARGS_((struct Lfs *lfsPtr));
  28. extern void LfsMemDetach _ARGS_((struct Lfs *lfsPtr));
  29. extern void LfsMemReserve _ARGS_((struct Lfs *lfsPtr, int *cacheBlocksPtr,
  30.                 char **memPtrPtr));
  31. extern void LfsMemRelease _ARGS_((struct Lfs *lfsPtr, int cacheBlocks, 
  32.                 char *memPtr));
  33.  
  34. #endif /* _LFSMEMINT */
  35.  
  36.